home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / ODBCINF.PAK / MYSHEET.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  63 lines

  1. // MySheet.h : header file
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1996 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyPropertySheet
  16.  
  17. class CMyPropertySheet : public CPropertySheet
  18. {
  19.     DECLARE_DYNAMIC(CMyPropertySheet)
  20.  
  21. // Construction
  22. public:
  23.     CMyPropertySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  24.     CMyPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  25.  
  26. // Attributes
  27. public:
  28.     CButton*        m_pbtnDatabase;
  29.     CButton*        m_pchkCursorLib;
  30.     CButton*        m_pbtnAbout;
  31.  
  32.     BOOL            m_bCursorLib;
  33.  
  34. // Operations
  35. public:
  36.  
  37. // Overrides
  38.     // ClassWizard generated virtual function overrides
  39.     //{{AFX_VIRTUAL(CMyPropertySheet)
  40.     public:
  41.     virtual BOOL OnInitDialog();
  42.     protected:
  43.     virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  44.     //}}AFX_VIRTUAL
  45.  
  46. // Implementation
  47. public:
  48.     virtual ~CMyPropertySheet();
  49.  
  50.     // Generated message map functions
  51. protected:
  52.     //{{AFX_MSG(CMyPropertySheet)
  53.     afx_msg void OnPaint();
  54.     afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  55.     afx_msg HCURSOR OnQueryDragIcon();
  56.     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  57.     afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
  58.     //}}AFX_MSG
  59.     DECLARE_MESSAGE_MAP()
  60. };
  61.  
  62. /////////////////////////////////////////////////////////////////////////////
  63.